:root {
  --theme: #ff0000;
  --pagination-color: #ff0000;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix:after,
.clearfix:before {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.t-l {
  text-align: left;
}
.t-r {
  text-align: right;
}
.t-c {
  text-align: center;
}
.gray {
  color: #8c8c8c;
}
.w-1280 {
  width: 1280px;
  margin: 0 auto;
}
.w-1400 {
  width: 1400px;
  margin: 0 auto;
}
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-16 {
  font-size: 16px;
}
.fs-17 {
  font-size: 17px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-22 {
  font-size: 22px;
}
.fs-24 {
  font-size: 24px;
}
.fs-26 {
  font-size: 26px;
}
.fs-28 {
  font-size: 28px;
}
.fs-30 {
  font-size: 30px;
}
.fs-32 {
  font-size: 32px;
}
.fs-34 {
  font-size: 34px;
}
.fs-36 {
  font-size: 36px;
}
.fw-400 {
  font-weight: 400;
}
.fw-600 {
  font-weight: 600;
}
.fw-900 {
  font-weight: 900;
}
.opacity-5 {
  opacity: 0.5;
}
.mt-14 {
  margin-top: 14px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-18 {
  margin-top: 18px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.h-100 {
  height: 100px;
}
.h-60 {
  height: 60px;
}
.h-40 {
  height: 40px;
}
.lh-14 {
  line-height: 14px;
}
.lh-16 {
  line-height: 16px;
}
.lh-18 {
  line-height: 18px;
}
.lh-20 {
  line-height: 20px;
}
.lh-22 {
  line-height: 22px;
}
.lh-24 {
  line-height: 24px;
}
.lh-26 {
  line-height: 26px;
}
.lh-28 {
  line-height: 28px;
}
.lh-30 {
  line-height: 30px;
}
.lh-32 {
  line-height: 32px;
}
.lh-34 {
  line-height: 34px;
}
.link {
  color: var(--theme);
  cursor: pointer;
}
.link:hover {
  opacity: 0.8;
}
.btn {
  padding: 0 25px;
  height: 32px;
  line-height: 30px;
  background-color: var(--theme);
  border: 1px solid var(--theme);
  color: #fff;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.8;
}
.btn:active {
  opacity: 0.1;
}
.btn.btn-line {
  color: var(--theme);
  background-color: transparent;
  border: 1px solid var(--theme);
  line-height: 30px;
  position: relative;
}
.btn.btn-line span {
  position: relative;
  z-index: 10;
}
.btn.btn-line:hover {
  border-color: var(--theme);
  color: #fff;
}
.btn.btn-line:hover::before {
  width: 100%;
}
.btn.btn-line:hover .icon {
  color: #fff;
  position: relative;
  z-index: 1;
}
.btn.btn-line:active {
  border-color: var(--theme);
  color: #fff;
}
.btn.btn-line::before {
  transition: all 0.5s;
  width: 0;
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 0;
  content: '';
  background-color: var(--theme);
}
/* 头部 start */
.header-top {
  width: 100%;
  z-index: 100;
  height: 40px;
  background-color: #262626;
  line-height: 40px;
  color: #8c8c8c;
}
.header-top .fr {
  height: 40px;
}
.header-top .fr > a {
  margin-left: 30px;
  position: relative;
  cursor: pointer;
}
.header-top .fr > a:hover img {
  visibility: visible;
  transition: all 0.5s;
  transform: translateY(0);
}
.header-top .fr > a img {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 30px;
  left: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 1000;
}
.header-logo {
  background-color: #fff;
  height: 100px;
  line-height: 100px;
  overflow: hidden;
}
.header-logo .logo {
  height: 100px;
}
.header-logo .logo-img {
  max-height: 80px;
  vertical-align: middle;
}
.header-logo .icon {
  color: #ff0000;
  font-size: 30px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.header-logo .tel {
  color: #ff0000;
  font-size: 20px;
}
.header-menu {
  height: 60px;
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  overflow: hidden;
  font-size: 16px;
  position: sticky;
  z-index: 100;
  top: 0;
  box-shadow: 0px 5px 15px -6px rgba(15, 15, 15, 0.1);
}
.header-menu li {
  float: left;
  padding: 0 20px;
  line-height: 60px;
  border-top: 1px solid transparent;
  margin: 0 5px;
  margin-top: -1px;
  position: relative;
  cursor: pointer;
}
.header-menu li.active,
.header-menu li:hover {
  border-top: 1px solid var(--theme);
  color: #ff0000;
}
.header-menu li.active::before,
.header-menu li:hover::before {
  width: 100%;
  opacity: 1;
}
.header-menu li::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: var(--theme);
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.5s;
  opacity: 0;
}
/* 头部 end */
/* footer start */
.footer {
  height: 240px;
  padding-top: 40px;
  background-color: #262626;
}
.footer .qrcode {
  width: 100px;
  text-align: center;
  margin-top: 50px;
}
.footer .qrcode img {
  width: 100px;
  height: 100px;
  vertical-align: top;
}
.footer .links {
  color: #efefef;
  margin-bottom: 30px;
}
.footer .links li {
  float: left;
  margin-right: 40px;
}
.footer .links2 {
  color: #8a8a8a;
  margin-top: 50px;
  margin-bottom: 10px;
}
.footer .links2 a {
  margin: 0 8px;
}
.footer .footer-tel {
  color: #bfbfbf;
  line-height: 1;
}
.footer .footer-tel .icon {
  float: left;
  font-size: 30px;
  line-height: 1;
  margin-right: 5px;
}
.footer .footer-tel .tel {
  color: #fff;
  margin-left: 8px;
}
.footer .copyright {
  color: #595959;
}
.footer .copyright .fr {
  width: 100px;
  text-align: center;
}
/* footer end */
/* banner start */
.banner-home {
  overflow: hidden;
}
.banner-home .swiper-container {
  height: 100%;
}
.banner-home .swiper-slide {
  text-align: center;
}
.banner-home .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-home .swiper-slide .img img {
  width: 100%;
}
.banner-home.banner-detail {
  display: flex;
}
.banner-home.banner-detail img {
  width: 100%;
}
/* banner end */
.page-router {
  height: 60px;
  line-height: 60px;
}
.page-router .icon {
  vertical-align: middle;
}
.page-router .active {
  color: #262626;
}
.page-router a:last-child {
  color: #262626;
}
.swiper2-pagination {
  position: absolute;
  left: 0;
  text-align: center;
  bottom: 5px;
  width: 100%;
}
.swiper2-pagination .swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: var(--theme);
  box-shadow: 0px 1px 2px #555 inset;
  margin: 0 3px;
  cursor: pointer;
}
.swiper2-pagination .swiper-active-switch {
  background: #fff;
}
/*# sourceMappingURL=./common.css.map */